how to remove all zeros from a list in python

35

>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))
a_string = a_string.strip("0")

Comments

Submit
0 Comments